Apache Qpid : Qpid Design - Configuration
This page last changed on Oct 19, 2006 by rgreig.
Configuration MethodsQPID supports two methods of configuration:
It is intended that the configuration file will be used for nearly all configuration but that some very common or useful options are exposed using command line switches. CLIQPID uses Commons CLI to parse command line arguments. It provides the following features:
The result of parsing options, however they are specified, is a CommandLine object which can then be queried to find out specific values. Currently this is done in org.openamq.broker.Main and the CommandLine object is not exposed elsewhere but if it does require to be more widely used it could be added to the ApplicationRegistry. However it is strongly recommended that the configuration approach in the follow section is used where possible. Configuration FileQPID uses Commons Configuration to handle nearly all configuration. It provides methods that allow parsing of options from a range of sources, including configuration files, system properties or simply hard coded classes of values (which is very useful in unit test cases). The file format used by QPID is XML, and Commons Configuration allows a very simple XPath-like syntax to query individual elements from the configuration file. In order to make using configuration as non-intrusive, flexible and strongly-typed as possible we do the following:
ExampleAn example should make this clearer. Consider a (fictional) configuration file containing the following XM <qpid>
<connector>
<ssl>true</ssl>
<port>5672</port>
</connector>
</qpid>
To use this in the application we would define a class to represent it: public class ConnectionConfig { public static final String SSL_PORT = "8672"; @Configured(path = "connector.port", defaultValue = DEFAULT_PORT) public int port; @Configured(path = "connector.ssl", defaultValue = "false") public boolean enableSSL; } Note the use of @Configured to define the mapping between the configuration file and the field values. All we need to do the access this configuration object anywhere within the application is call: ConnectionConfig cfg = ApplicationRegistry.getInstance().getConfiguredObject(ConnectionConfig.class); The ApplicationRegistry is documented elsewhere but from the configuration perspective all you need to know is that the first time getConfiguredObject is called for a particular class, the configuration file is parsed and the configuration object is stored for future use. Subsequent calls to getConfiguredObject for the same class are very cheap since only a hash table lookup is done. Command Line OptionsThe following options are available:
LoggingLogging is handled slightly differently. The main reason for this is that logging is something we want configured before the main configuration file is processed. The broker uses log4j as the logging implementation, and configuration must be done using the more expressive XML format. A couple of command line switches are used to configure logging:
By using the logwatch option it is possible to make changes to the logging configuration at runtime without restarting the broker. (For example, enabling more logging on certain packages in order to diagnose a problem). |
Document generated by Confluence on Apr 22, 2008 02:47 |